Initializes a new instance of the DataBoundSeries class.
Namespace: MindFusion.Charting
File: DataBoundSeries.js
SyntaxJavaScript
Copy Code
|
|---|
function DataBoundSeries (dataSource) |
Type: any, Array
A reference to the data source object.
RemarksIn most cases you would set the dataSource property of a chart control. DataBoundSeries are created automatically according to the contents of the provided dataSource.
ExampleThe following code creates a DataBoundSeries instance from a List:
JavaScript
Copy Code
|
|---|
var data = new Collections.List([22, 18, 25, 34, 51, 44, 8]); var series = new Charting.DataBoundSeries(data); |
See Also